home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / demos / ftl / hpm.txt < prev    next >
Encoding:
Text File  |  1995-09-06  |  735 b   |  18 lines

  1. The "Play Midi in Dialog" menu option sets a flag
  2. which is used by the OnHandlePlayMidiFile method 
  3. of the HTDisplayBox component. This method is used 
  4. to modify how clicks on links which play Midi files
  5. are handled. In this case, the Midi files are not
  6. played through the builtin player but are 
  7. instead sent to a TMultiMediaPlayer component
  8. in a generic dialog. (This could be used to
  9. direct the display to other custom components
  10. of an application.)
  11.  
  12. (Note: Assert methods normally are used to abort
  13. all further processing of an action, while the
  14. Handle Methods modify the processing. These
  15. two methods can each be overridden in code by
  16. direct assignment for Assert types and virtual
  17. overriding for Handle types.)
  18.